home *** CD-ROM | disk | FTP | other *** search
/ Get On The Internet / Get on the Internet.iso / tutorial / ptwin / les6 / les6.cmd < prev   
Encoding:
Text File  |  1995-03-01  |  23.4 KB  |  1,039 lines

  1. init ;
  2.         winpos 0 0 ;
  3.         winsize 640 480 ;
  4.         config __development 0 ;
  5.         config __removeclear 0 ;
  6.         config __fullscreen 1 ;
  7.         config __tipespeed 15 ;
  8.         config clock 302 ;
  9.         config __lessontitle "Lesson 6 Menu" ;
  10. endinit ;
  11.  
  12. function "map1" ;
  13.         clearmapscreen ;
  14.         mapscreen 0 40 40 40 text2 14 440 "Click Here For Help" ;
  15.         mapscreen 40 40 40 40 text2 14 440 "Read Electronic Mail" ;
  16.         mapscreen 80 40 40 40 text2 14 440 "Send Electronic Mail" ;
  17.         mapscreen 120 40 40 40 text2 14 440 "Browse the World Wide Web - Global Hypertext Information" ;
  18.         mapscreen 160 40 40 40 text2 14 440 "Browse Gopher - Global Information Menus" ;
  19.         mapscreen 200 40 40 40 text2 14 440 "Read Netnews Newsgroups" ;
  20.         mapscreen 240 40 40 40 text2 14 440 "Post to Netnews Newsgroups" ;
  21.         mapscreen 280 40 40 40 text2 14 440 "FTP File Transfer" ;
  22.         mapscreen 320 40 40 40 text2 14 440 "Telnet - Log Into Remote Computers" ;
  23.         mapscreen 360 40 40 40 text2 14 440 "Finger - Look Up User Information On Internet Systems" ;
  24.         mapscreen 400 40 40 40 text2 14 440 "IRC - Chat With Internet Users All Over The World" ;
  25.         enablescreenmap ;
  26. endfunction ;
  27.  
  28. function "maparch" ;
  29.         mapscreen 9 83 31 31 text2 14 440 "Open local file." ;
  30.         mapscreen 41 83 31 31 text2 14 440 "Save current document to disk." ;
  31.         mapscreen 73 83 31 31 text2 14 440 "Open the book mark file." ;
  32.         mapscreen 105 83 31 31 text2 14 440 "Search word(s) in the current document." ;
  33.         mapscreen 504 83 31 31 text2 14 440 "Go to the home page." ;
  34.         mapscreen 536 83 31 31 text2 14 440 "Go to previous document." ;
  35.         mapscreen 568 83 31 31 text2 14 440 "Go to next document." ;
  36.         enablescreenmap ;
  37. endfunction ;
  38.  
  39. function "movecursor" ;
  40.         if = __silentmode 1 ;
  41.         setcursor a_xdest a_ydest ;
  42.         goto "movedone" ;
  43.         endif ;
  44.         getcursor ;
  45.         config l_xpos __curxpos ;
  46.         config l_ypos __curypos ;
  47.         config l_xmove 1 ;
  48.         config l_ymove 1 ;
  49.         label "movenotdone" ;
  50.         if < l_xpos a_xdest ;
  51.         config l_xpos + l_xpos l_xmove ;
  52.         endif ;
  53.         if < l_ypos a_ydest ;
  54.         config l_ypos + l_ypos l_ymove ;
  55.         endif ;
  56.         if > l_xpos a_xdest ;
  57.         config l_xpos - l_xpos l_xmove ;
  58.         endif ;
  59.         if > l_ypos a_ydest ;
  60.         config l_ypos - l_ypos l_ymove ;
  61.         endif ;
  62.         setcursor l_xpos l_ypos ;
  63.         sleep 1 ;
  64.         if and = l_xpos a_xdest = l_ypos a_ydest ;
  65.         goto "movedone" ;
  66.         endif ;
  67.         goto "movenotdone" ;
  68.         label "movedone" ;
  69. endfunction ;
  70.  
  71. segment "main" 0 ;
  72.     chainseg "seg_00" ;
  73. endseg ;
  74.  
  75. segment "seg_00" 1 ;
  76.         menuitem "Lesson Introduction" ;
  77.         startimg "tr.pcf" 0 0 ;
  78.         config __textcolor darkcyan ;
  79.         text "tx0a" 240 39 390 23 "~f05Lesson 6:  Wandering the World Wide Web" ;
  80.         config __textcolor darkred ;
  81.         text "tx0" 337 69 120 33 "~f27Welcome" ;
  82.         config __textcolor medblue ;
  83.         text "tx1" 307 140 177 23 "~f26In this lesson you will:" ;
  84.         startbullet 219 180 350 250 ;
  85.         bullet "b1" 1 0 "Learn what the World Wide Web is" ;
  86.         bullet "b2" 1 6 "Access Web pages" ;
  87.         bullet "b3" 1 12 "Choose a guided tour" ;
  88.         bullet "b4" 1 18 "Search for topics using \"Yahoo\"" ;
  89.         bullet "B5" 1 24 "Browse through Web sites" ;
  90.         startavi "l6s.avi" "jnk1.vcw" 15 78 ;
  91.         status "Click to continue..." ;
  92.         anykeymouse 17 ;
  93.         status ;
  94.         clrscr ;
  95.         endimg ;
  96.         endavi ;
  97.     chainseg "seg_01" ;
  98. endseg ;
  99.  
  100. segment "seg_01" 1 ;
  101.         menuitem "What is the World Wide Web?" ;
  102.         startimg "blackbd.pcf" 0 0 ;
  103.         config __textcolor darkcyan ;
  104.         text "tx0" 211 78 236 28 "~f26What is the World Wide Web?" ;
  105.         startaud "net_6_1.wav" "net_6_1.vcw" 0 ;
  106.     frame ;
  107.         startbullet 80 110 450 270 ;
  108.         config __bullettextcolor white ;
  109.         bullet "b1" 1 0 "The Web consists of various sites containing information." ;
  110.     frame ;
  111.         bullet "b2" 1 4 "When you visit a Web site, a Web Home Page is displayed." ;
  112.     frame ;
  113.         bullet "b3" 2 7 "\"HTML\" document" ;
  114.     frame ;
  115.         bullet "b4" 1 11 "The Web Home Page document links to other documents." ;
  116.     frame ;
  117.         bullet "b5" 1 15 "The Web is more powerful than Gopher." ;
  118.     frame ;
  119.         bullet "b6" 2 18 "Gopher documents link through a hierarchy." ;
  120.     frame ;
  121.         bullet "b6a" 2 21 "Gopher documents generally link to text files." ;
  122.     frame ;
  123.         bullet "b7" 2 24 "Web documents contain hyperlinks, which can link to any type of file stored anywhere on the Net." ;
  124.     frame ;
  125.         bullet "b8" 1 31 "Web Browsers let you view all file types in the Web, such as graphics and animation." ;
  126.     frame ;
  127.         pauseaud ;
  128.         status "Click to continue..." ;
  129.         anykeymouse 17 ;
  130.         status ;
  131.         clrscr ;
  132.         endimg ;
  133.         endaud ;
  134.     chainseg "seg_02" ;
  135. endseg ;
  136.  
  137. segment "seg_02" 1 ;
  138.         menuitem "Accessing Web Pages" ;
  139.         startimg "l6_seg2a.pcf" 0 0 ;
  140.         call "map1" ;
  141.         startaud "net_6_2.wav" "net_6_2.vcw" 0 ;
  142.     frame ;
  143.         arrow "a1" 141 80 1 ;
  144.     frame ;
  145.         pauseaud ;
  146.         status "Click the \"Browse the World Wide Web...\" button." ;
  147.         imouse 1 120 40 40 40 ;
  148.         status ;
  149.         clrscr ;
  150.         nextimg ;
  151.         call "maparch" ;
  152.         resumeaud ;
  153.     frame ;
  154.         pauseaud ;
  155.         status "Press the <PgDn> key." ;
  156.         ikey pgdn ;
  157.         status ;
  158.         nextimg ;
  159.         resumeaud ;
  160.     frame ;
  161.         arrow "a4" 170 182 4 ;
  162.     frame ;
  163.         pauseaud ;
  164.         status "Click the \"Mercury Center\" link." ;
  165.         imouse 1 61 172 106 23 ;
  166.         status "Please wait..." ;
  167.         clrscr ;
  168.         nextimg ;
  169.         resumeaud ;
  170.     frame ;
  171.         hourglass 1 ;
  172.         sleep 300 ;
  173.         nextimg ;
  174.         sleep 300 ;
  175.         nextimg ;
  176.         sleep 300 ;
  177.         nextimg ;
  178.         sleep 300 ;
  179.         nextimg ;
  180.         sleep 300 ;
  181.         nextimg ;
  182.         sleep 300 ;
  183.         nextimg ;
  184.         sleep 200 ;
  185.         nextimg ;
  186.         sleep 200 ;
  187.         nextimg ;
  188.         sleep 300 ;
  189.         nextimg ;
  190.         sleep 300 ;
  191.         nextimg ;
  192.         sleep 300 ;
  193.         endimg ;
  194.         startimg "l6_seg2b.pcf" 0 0 ;
  195.         hourglass 0 ;
  196.         status ;
  197.     frame ;
  198.         arrow "a7" 437 340 4 ;
  199.     frame ;
  200.         clrscr ;
  201.         box "bx8" 96 284 261 24 ;
  202.     frame ;
  203.         clrscr ;
  204.     frame ;
  205.         arrow "a9" 318 345 4 ;
  206.     frame ;
  207.         pauseaud ;
  208.         status "Click the \"Sports:...\" link." ;
  209.         imouse 1 15 334 298 22 ;
  210.         status "Please wait..." ;
  211.         clrscr ;
  212.         hourglass 1 ;
  213.         nextimg ;
  214.         sleep 100 ;
  215.         nextimg ;
  216.         sleep 100 ;
  217.         nextimg ;
  218.         sleep 100 ;
  219.         nextimg ;
  220.         sleep 100 ;
  221.         nextimg ;
  222.         sleep 100 ;
  223.         nextimg ;
  224.         sleep 100 ;
  225.         nextimg ;
  226.         sleep 100 ;
  227.         nextimg ;
  228.         sleep 100 ;
  229.         nextimg ;
  230.         sleep 100 ;
  231.         nextimg ;
  232.         sleep 100 ;
  233.         nextimg ;
  234.         sleep 100 ;
  235.         nextimg ;
  236.         sleep 100 ;
  237.         nextimg ;
  238.         sleep 100 ;
  239.         nextimg ;
  240.         hourglass 0 ;
  241.         status ;
  242.         resumeaud ;
  243.     frame ;
  244.         pauseaud ;
  245.         status "Press the <PgDn> key." ;
  246.         ikey pgdn ;
  247.         status ;
  248.         nextimg ;
  249.         resumeaud ;
  250.     frame ;
  251.         pauseaud ;
  252.         status "Click to continue..." ;
  253.         anykeymouse 17 ;
  254.         status ;
  255.         resumeaud ;
  256.     frame ;
  257.         arrow "a14" 552 123 1 ;
  258.     frame ;
  259.         pauseaud ;
  260.         status "Click the \"Go to previous document\" button." ;
  261.         imouse 1 536 83 31 32 ;
  262.         status ;
  263.         clrscr ;
  264.         nextimg ;
  265.         resumeaud ;
  266.     frame ;
  267.         arrow "a16" 520 118 1 ;
  268.     frame ;
  269.         pauseaud ;
  270.         status "Click the \"Go to the home page\" button." ;
  271.         imouse 1 504 83 32 33 ;
  272.         status ;
  273.         clrscr ;
  274.         endimg ;
  275.         endaud ;
  276.     chainseg "seg_03" ;
  277. endseg ;
  278.  
  279. segment "seg_03" 1 ;
  280.         menuitem "Choosing a Guided Tour" ;
  281.         startimg "l6_seg3.pcf" 0 0 ;
  282.         call "map1" ;
  283.         call "maparch" ;
  284.         startaud "net_6_3.wav" "net_6_3.vcw" 0 ;
  285.     frame ;
  286.         pauseaud ;
  287.         arrow "a1" 144 387 4 ;
  288.         status "Click the \"Guided Tours\" link." ;
  289.         imouse 1 51 378 94 20 ;
  290.         status "Please wait..." ;
  291.         hourglass 1 ;
  292.         clrscr ;
  293.         nextimg ;
  294.         sleep 200 ;
  295.         nextimg ;
  296.         hourglass 0 ;
  297.         status ;
  298.         resumeaud ;
  299.     frame ;
  300.         pauseaud ;
  301.         arrow "a2" 303 394 4 ;
  302.         status "Click the \"John December's...\" link." ;
  303.         imouse 1 49 382 256 28 ;
  304.         status "Please wait..." ;
  305.         hourglass 1 ;
  306.         clrscr ;
  307.         nextimg ;
  308.         sleep 100 ;
  309.         nextimg ;
  310.         sleep 100 ;
  311.         nextimg ;
  312.         sleep 100 ;
  313.         nextimg ;
  314.         sleep 100 ;
  315.         nextimg ;
  316.         sleep 100 ;
  317.         nextimg ;
  318.         hourglass 0 ;
  319.         status ;
  320.         resumeaud ;
  321.     frame ;
  322.         pauseaud ;
  323.         status "Press the <PgDn> key." ;
  324.         ikey pgdn ;
  325.         nextimg ;
  326.         status "Press the <PgDn> key again." ;
  327.         ikey pgdn ;
  328.         status ;
  329.         nextimg ;
  330.         resumeaud ;
  331.     frame ;
  332.         box "bx4" 8 171 611 197 ;
  333.     frame ;
  334.         clrscr ;
  335.         arrow "a5" 339 203 3 ;
  336.     frame ;
  337.         menuitem "Searching for Topics Using Yahoo" ;
  338.         pauseaud ;
  339.         status "Click the \"Yahoo\" link." ;
  340.         imouse 1 310 197 55 24 ;
  341.         status "Please wait..." ;
  342.         hourglass 1 ;
  343.         clrscr ;
  344.         nextimg ;
  345.         sleep 100 ;
  346.         nextimg ;
  347.         hourglass 0 ;
  348.         status ;
  349.         resumeaud ;
  350.     frame ;
  351.         arrow "a7" 69 263 7 ;
  352.     frame ;
  353.         clrscr ;
  354.         arrow "a8" 161 263 6 ;
  355.     frame ;
  356.         clrscr ;
  357.         arrow "a9" 129 307 8 ;
  358.     frame ;
  359.         clrscr ;
  360.     frame ;
  361.         pauseaud ;
  362.         arrow "a11" 90 122 1 ;
  363.         status "Click the \"Open the book mark file\" button." ;
  364.         imouse 1 74 84 31 32 ;
  365.         status ;
  366.         clrscr ;
  367.         nextimg ;
  368.         disablescreenmap ;
  369.         resumeaud ;
  370.     frame ;
  371.         pauseaud ;
  372.         status "Click the \"Add\" button." ;
  373.         imouse 1 483 214 80 24 ;
  374.         status ;
  375.         nextimg ;
  376.         resumeaud ;
  377.     frame ;
  378.         pauseaud ;
  379.         status "Click the \"Done\" button." ;
  380.         imouse 1 484 158 79 23 ;
  381.         status ;
  382.         nextimg ;
  383.         enablescreenmap ;
  384.         resumeaud ;
  385.     frame ;
  386.         arrow "a14" 161 263 6 ;
  387.     frame ;
  388.         pauseaud ;
  389.         status "Click the \"What's Cool?\" link." ;
  390.         imouse 1 115 256 92 27 ;
  391.         status "Please wait..." ;
  392.         hourglass 1 ;
  393.         clrscr ;
  394.         nextimg ;
  395.         sleep 100 ;
  396.         nextimg ;
  397.         sleep 100 ;
  398.         nextimg ;
  399.         sleep 100 ;
  400.         nextimg ;
  401.         hourglass 0 ;
  402.         status ;
  403.         resumeaud ;
  404.     frame ;
  405.         arrow "a16" 235 202 4 ;
  406.     frame ;
  407.         pauseaud ;
  408.         status "Click the \"ATandT 800 Directory\" link." ;
  409.         imouse 1 49 192 169 24 ;
  410.         status "Please wait..." ;
  411.         hourglass 1 ;
  412.         clrscr ;
  413.         nextimg ;
  414.         sleep 100 ;
  415.         nextimg ;
  416.         hourglass 0 ;
  417.         status ;
  418.         resumeaud ;
  419.     frame ;
  420.         arrow "a18" 60 245 6 ;
  421.     frame ;
  422.         pauseaud ;
  423.         status "Click the \"ATandT 800 Directory\" link." ;
  424.         imouse 1 53 242 139 24 ;
  425.         status "Please wait..." ;
  426.         hourglass 1 ;
  427.         clrscr ;
  428.         nextimg ;
  429.         sleep 100 ;
  430.         nextimg ;
  431.         sleep 100 ;
  432.         nextimg ;
  433.         sleep 100 ;
  434.         nextimg ;
  435.         sleep 100 ;
  436.         nextimg ;
  437.         sleep 100 ;
  438.         nextimg ;
  439.         sleep 100 ;
  440.         nextimg ;
  441.         sleep 100 ;
  442.         nextimg ;
  443.         sleep 100 ;
  444.         nextimg ;
  445.         status ;
  446.         hourglass 0 ;
  447.         resumeaud ;
  448.     frame ;
  449.         pauseaud ;
  450.         status "Press the <PgDn> key." ;
  451.         ikey pgdn ;
  452.         status ;
  453.         nextimg ;
  454.         resumeaud ;
  455.     frame ;
  456.         arrow "a21" 156 172 3 ;
  457.     frame ;
  458.         pauseaud ;
  459.         status "Click inside the Search box." ;
  460.         imouse 1 21 172 409 24 ;
  461.         status ;
  462.         clrscr ;
  463.         config __caretwidth 2 ;
  464.         config __caretheight 16 ;
  465.         showcaret 25 176 ;
  466.         resumeaud ;
  467.     frame ;
  468.         pauseaud ;
  469.         status "Please wait..." ;
  470.         sleep 1 ;
  471.         config __textfont 31 ;
  472.         tipe "tp13" 26 176 157 20 "netcom" ;
  473.         status ;
  474.         resumeaud ;
  475.     frame ;
  476.         pauseaud ;
  477.         arrow "a24" 495 198 1 ;
  478.         status "Click the \"begin search\" button." ;
  479.         imouse 1 444 173 111 24 ;
  480.         status "Please wait..." ;
  481.         hourglass 1 ;
  482.         remove "a24" ;
  483.         hidecaret ;
  484.         nextimg ;
  485.         nextimg ;
  486.         clrscr ;
  487.         sleep 100 ;
  488.         nextimg ;
  489.         sleep 100 ;
  490.         nextimg ;
  491.         sleep 100 ;
  492.         nextimg ;
  493.         hourglass 0 ;
  494.         status ;
  495.         resumeaud ;
  496.     frame ;
  497.         pauseaud ;
  498.         status "Click the \"Go to previous document\" button." ;
  499.         imouse 1 537 84 32 32 ;
  500.         nextimg ;
  501.         status "Click the \"Open the book mark file\" button." ;
  502.         imouse 1 73 84 32 31 ;
  503.         nextimg ;
  504.         disablescreenmap ;
  505.         status "Click the \"Add\" button." ;
  506.         imouse 1 483 213 80 24 ;
  507.         status ;
  508.         nextimg ;
  509.         resumeaud ;
  510.     frame ;
  511.         pauseaud ;
  512.         arrow "a26" 109 179 4 ;
  513.         status "Click the \"Yahoo\" bookmark." ;
  514.         imouse 1 66 174 400 13 ;
  515.         clrscr ;
  516.         nextimg ;
  517.         status "Click the \"Jump\" button." ;
  518.         imouse 1 483 125 81 25 ;
  519.         status ;
  520.         endimg ;
  521.         endaud ;
  522.     chainseg "seg_04" ;
  523. endseg ;
  524.  
  525. segment "seg_04" 1 ;
  526.         menuitem "Canceling a Link" ;
  527.         startimg "l6_seg4.pcf" 0 0 ;
  528.         call "map1" ;
  529.         call "maparch" ;
  530.         startaud "net_6_4.wav" "net_6_4.vcw" 0 ;
  531.     frame ;
  532.         pauseaud ;
  533.         arrow "a1" 368 280 1 ;
  534.         status "Click the \"A Random Link\" link." ;
  535.         imouse 1 319 258 112 26 ;
  536.         status "Please wait..." ;
  537.         hourglass 1 ;
  538.         clrscr ;
  539.         nextimg ;
  540.         sleep 300 ;
  541.         status ;
  542.         hourglass 0 ;
  543.         resumeaud ;
  544.     frame ;
  545.         hourglass 1 ;
  546.         sleep 1000 ;
  547.         hourglass 0 ;
  548.     frame ;
  549.         pauseaud ;
  550.         hourglass 1 ;
  551.         config a_xdest 617 ;
  552.         config a_ydest 98 ;
  553.         call "movecursor" ;
  554.         nextimg ;
  555.         status ;
  556.         hourglass 0 ;
  557.         resumeaud ;
  558.     frame ;
  559.         textbox "tb4" 312 158 299 72 "When you click a link, the system connects to the appropriate computer and downloads the data associated with the link." ;
  560.     frame ;
  561.         textbox "tb5" 283 243 328 103 "Sometimes problems arise: ~n~n~c01*  ~c00Cannot establish a connection ~n~c01*  ~c00The file(s) may have been removed ~n~c01*  ~c00Remote computer is overloaded with requests" ;
  562.     frame ;
  563.         pauseaud ;
  564.         status "Click to continue..." ;
  565.         anykeymouse 17 ;
  566.         status ;
  567.         clrscr ;
  568.         resumeaud ;
  569.     frame ;
  570.         menuitem "Searching for Chocolate..." ;
  571.         pauseaud ;
  572.         arrow "a7" 128 308 8 ;
  573.         status "Click the \"Search\" link." ;
  574.         imouse 1 101 287 53 23 ;
  575.         status "Please wait..." ;
  576.         hourglass 1 ;
  577.         clrscr ;
  578.         nextimg ;
  579.         sleep 100 ;
  580.         nextimg ;
  581.         sleep 100 ;
  582.         nextimg ;
  583.         sleep 100 ;
  584.         nextimg ;
  585.         sleep 100 ;
  586.         nextimg ;
  587.         hourglass 0 ;
  588.         status ;
  589.         resumeaud ;
  590.     frame ;
  591.         arrow "a8" 272 240 8 ;
  592.     frame ;
  593.         pauseaud ;
  594.         status "Click inside the Search box." ;
  595.         imouse 1 22 216 249 23 ;
  596.         status ;
  597.         clrscr ;
  598.         config __caretwidth 2 ;
  599.         config __caretheight 16 ;
  600.         showcaret 25 219 ;
  601.         resumeaud ;
  602.     frame ;
  603.         pauseaud ;
  604.         status "Type \"chocolate\"." ;
  605.         config __ikeyfont 31 ;
  606.         istring 3 "is6" 25 218 151 20 "chocolate" ;
  607.         status "Click the \"Search\" button." ;
  608.         arrow "a10" 349 241 8 ;
  609.         imouse 1 283 215 64 24 ;
  610.         status "Please wait..." ;
  611.         remove "a10" ;
  612.         hidecaret ;
  613.         hourglass 1 ;
  614.         nextimg ;
  615.         clrscr ;
  616.         sleep 100 ;
  617.         nextimg ;
  618.         sleep 100 ;
  619.         nextimg ;
  620.         sleep 100 ;
  621.         nextimg ;
  622.         sleep 100 ;
  623.         nextimg ;
  624.         sleep 100 ;
  625.         nextimg ;
  626.         hourglass 0 ;
  627.         status ;
  628.         resumeaud ;
  629.     frame ;
  630.         pauseaud ;
  631.         status "Click the <PgDn> key." ;
  632.         ikey pgdn ;
  633.         status ;
  634.         nextimg ;
  635.         resumeaud ;
  636.     frame ;
  637.         arrow "a12" 216 408 4 ;
  638.     frame ;
  639.         pauseaud ;
  640.         status "Click the \"Index\" link." ;
  641.         imouse 1 51 397 165 20 ;
  642.         status "Please wait..." ;
  643.         hourglass 1 ;
  644.         clrscr ;
  645.         nextimg ;
  646.         sleep 100 ;
  647.         nextimg ;
  648.         sleep 100 ;
  649.         nextimg ;
  650.         sleep 100 ;
  651.         nextimg ;
  652.         sleep 100 ;
  653.         nextimg ;
  654.         sleep 100 ;
  655.         nextimg ;
  656.         sleep 100 ;
  657.         nextimg ;
  658.         sleep 100 ;
  659.         nextimg ;
  660.         sleep 100 ;
  661.         nextimg ;
  662.         hourglass 0 ;
  663.         status ;
  664.         resumeaud ;
  665.     frame ;
  666.         pauseaud ;
  667.         status "Click the \"Open the book mark file\" button." ;
  668.         imouse 1 73 83 32 33 ;
  669.         nextimg ;
  670.         disablescreenmap ;
  671.         status "Click the \"Add\" button." ;
  672.         imouse 1 483 213 81 24 ;
  673.         nextimg ;
  674.         status "Double-click the \"Yahoo\" bookmark." ;
  675.         imouse 4 66 174 400 15 ;
  676.         status ;
  677.         endimg ;
  678.         endaud ;
  679.     chainseg "seg_05" ;
  680. endseg ;
  681.  
  682. segment "seg_05" 1 ;
  683.         menuitem "Uniform Resource Locators" ;
  684.         startimg "l6_seg5.pcf" 0 0 ;
  685.         call "map1" ;
  686.         call "maparch" ;
  687.         startaud "net_6_5.wav" "net_6_5.vcw" 0 ;
  688.     frame ;
  689.         textbox "tb1" 350 294 238 57 "All documents in the Web have a Uniform Resource Locator (URL)." ;
  690.     frame ;
  691.         arrow "a2" 359 97 4 ;
  692.     frame ;
  693.         clrscr ;
  694.     frame ;
  695.         box "bx4" 145 87 31 21 ;
  696.     frame ;
  697.         clrscr ;
  698.         box "bx5" 185 87 175 21 ;
  699.     frame ;
  700.         clrscr ;
  701.     frame ;
  702.         pauseaud ;
  703.         status "Please wait..." ;
  704.         config a_xdest 153 ;
  705.         config a_ydest 96 ;
  706.         call "movecursor" ;
  707.         nextimg ;
  708.         showcaret 357 91 ;
  709.         sleep 100 ;
  710.         nextimg ;
  711.         showcaret 155 91 ;
  712.         setcursor 153 114 ;
  713.         sleep 1 ;
  714.         tipe "tp1" 155 90 156 23 "ttp://www.microsoft.com" ;
  715.         status ;
  716.         resumeaud ;
  717.     frame ;
  718.         pauseaud ;
  719.         status "Press <Enter>." ;
  720.         ikey return ;
  721.         status "Please wait..." ;
  722.         hourglass 1 ;
  723.         hidecaret ;
  724.         sleep 100 ;
  725.         nextimg ;
  726.         clrscr ;
  727.         sleep 100 ;
  728.         nextimg ;
  729.         sleep 100 ;
  730.         nextimg ;
  731.         sleep 100 ;
  732.         nextimg ;
  733.         sleep 100 ;
  734.         nextimg ;
  735.         sleep 100 ;
  736.         nextimg ;
  737.         sleep 100 ;
  738.         nextimg ;
  739.         sleep 100 ;
  740.         nextimg ;
  741.         sleep 100 ;
  742.         nextimg ;
  743.         hourglass 0 ;
  744.         status ;
  745.         resumeaud ;
  746.     frame ;
  747.         pauseaud ;
  748.         status "Press the <PgDn> key." ;
  749.         ikey pgdn ;
  750.         status ;
  751.         nextimg ;
  752.         resumeaud ;
  753.     frame ;
  754.         pauseaud ;
  755.         status "Click the \"Go to previous document\" button." ;
  756.         imouse 1 536 84 32 31 ;
  757.         status ;
  758.         clrscr ;
  759.         endimg ;
  760.         endaud ;
  761.     chainseg "seg_06" ;
  762. endseg ;
  763.  
  764. segment "seg_06" 1 ;
  765.         menuitem "Choosing a Yahoo Category" ;
  766.         startimg "l6_seg6.pcf" 0 0 ;
  767.         call "map1" ;
  768.         call "maparch" ;
  769.         startaud "net_6_6.wav" "net_6_6.vcw" 0 ;
  770.     frame ;
  771.         arrow "a1" 257 369 4 ;
  772.     frame ;
  773.         pauseaud ;
  774.         clrscr ;
  775.         status "Press the <PgDn> key." ;
  776.         ikey pgdn ;
  777.         status ;
  778.         nextimg ;
  779.         resumeaud ;
  780.     frame ;
  781.         arrow "a3" 238 149 4 ;
  782.     frame ;
  783.         pauseaud ;
  784.         status "Click the \"Entertainment\" link." ;
  785.         imouse 1 47 139 111 24 ;
  786.         hourglass 1 ;
  787.         status "Please wait..." ;
  788.         clrscr ;
  789.         nextimg ;
  790.         sleep 100 ;
  791.         nextimg ;
  792.         sleep 100 ;
  793.         nextimg ;
  794.         sleep 100 ;
  795.         nextimg ;
  796.         hourglass 0 ;
  797.         status ;
  798.         resumeaud ;
  799.     frame ;
  800.         arrow "a5" 208 218 4 ;
  801.     frame ;
  802.         pauseaud ;
  803.         status "Click the \"Amusement Parks\" link." ;
  804.         imouse 1 50 210 132 21 ;
  805.         hourglass 1 ;
  806.         status "Please wait..." ;
  807.         clrscr ;
  808.         nextimg ;
  809.         sleep 100 ;
  810.         nextimg ;
  811.         sleep 100 ;
  812.         nextimg ;
  813.         hourglass 0 ;
  814.         status ;
  815.         resumeaud ;
  816.     frame ;
  817.         arrow "a7" 184 258 4 ;
  818.     frame ;
  819.         pauseaud ;
  820.         status "Click the \"Roller Coasters\" link." ;
  821.         imouse 1 51 246 116 26 ;
  822.         hourglass 1 ;
  823.         status "Please wait..." ;
  824.         clrscr ;
  825.         nextimg ;
  826.         sleep 100 ;
  827.         nextimg ;
  828.         sleep 100 ;
  829.         nextimg ;
  830.         hourglass 0 ;
  831.         status ;
  832.         resumeaud ;
  833.     frame ;
  834.         pauseaud ;
  835.         arrow "a9" 337 200 4 ;
  836.         status "Click the \"Busch Gardens...\" link." ;
  837.         imouse 1 49 191 291 24 ;
  838.         hourglass 1 ;
  839.         status "Please wait..." ;
  840.         clrscr ;
  841.         nextimg ;
  842.         sleep 100 ;
  843.         nextimg ;
  844.         sleep 100 ;
  845.         nextimg ;
  846.         hourglass 0 ;
  847.         status ;
  848.         resumeaud ;
  849.     frame ;
  850.         pauseaud ;
  851.         arrow "a10" 195 372 4 ;
  852.         status "Click the \"Loch Ness Monster\" link." ;
  853.         imouse 1 48 356 150 31 ;
  854.         hourglass 1 ;
  855.         status "Please wait..." ;
  856.         clrscr ;
  857.         nextimg ;
  858.         sleep 100 ;
  859.         nextimg ;
  860.         sleep 100 ;
  861.         nextimg ;
  862.         sleep 100 ;
  863.         nextimg ;
  864.         hourglass 0 ;
  865.         resumeaud ;
  866.     frame ;
  867.         hourglass 1 ;
  868.         sleep 300 ;
  869.         nextimg ;
  870.         sleep 300 ;
  871.         hourglass 0 ;
  872.     frame ;
  873.         pauseaud ;
  874.         hourglass 1 ;
  875.         config a_xdest 617 ;
  876.         config a_ydest 98 ;
  877.         call "movecursor" ;
  878.         nextimg ;
  879.         status ;
  880.         hourglass 0 ;
  881.         resumeaud ;
  882.     frame ;
  883.         pauseaud ;
  884.         arrow "a13" 616 191 2 ;
  885.         status "Click the Scroll Bar." ;
  886.         imouse 1 623 153 16 244 ;
  887.         status ;
  888.         clrscr ;
  889.         nextimg ;
  890.         resumeaud ;
  891.     frame ;
  892.         pauseaud ;
  893.         status "Click the \"here\" link." ;
  894.         arrow "a14" 52 199 6 ;
  895.         imouse 1 47 199 37 23 ;
  896.         status "Please wait..." ;
  897.         hourglass 1 ;
  898.         clrscr ;
  899.         nextimg ;
  900.         sleep 100 ;
  901.         nextimg ;
  902.         sleep 100 ;
  903.         nextimg ;
  904.         sleep 100 ;
  905.         nextimg ;
  906.         sleep 100 ;
  907.         nextimg ;
  908.         status ;
  909.         hourglass 0 ;
  910.         resumeaud ;
  911.     frame ;
  912.         pauseaud ;
  913.         status "Double-click the smaller Control-menu box." ;
  914.         box "bx17" 0 18 18 20 ;
  915.         arrow "a17" 22 26 4 ;
  916.         imouse 4 0 18 18 20 ;
  917.         status ;
  918.         clrscr ;
  919.         nextimg ;
  920.         resumeaud ;
  921.     frame ;
  922.         endimg ;
  923.         endaud ;
  924.     chainseg "review" ;
  925. endseg ;
  926.  
  927. segment "review" 1 ;
  928.         menuitem "Lesson Review" ;
  929.         startimg "tr.pcf" 0 0 ;
  930.         config __textcolor darkcyan ;
  931.         text "tx0a" 240 39 390 23 "~f05Lesson 6:  Wandering the World Wide Web" ;
  932.         config __textcolor darkred ;
  933.         text "tx0" 337 69 120 33 "~f27Review" ;
  934.         config __textcolor medblue ;
  935.         text "tx1" 244 139 279 33 "~f26In this lesson you learned:" ;
  936.         startbullet 219 180 379 200 ;
  937.         startbullet 219 180 350 250 ;
  938.         bullet "b1" 1 0 "What the World Wide Web is" ;
  939.         bullet "b2" 1 6 "How to access Web pages" ;
  940.         bullet "b3" 1 12 "About guided tours" ;
  941.         bullet "b4" 1 18 "How to search for topics using \"Yahoo\"" ;
  942.         bullet "B5" 1 24 "How to browse through Web sites" ;
  943.         startaud "net_6_r.wav" "net_6_r.vcw" 0 ;
  944.     frame ;
  945.         pauseaud ;
  946.         status "Click to begin the Review." ;
  947.         anykeymouse 17 ;
  948.         clrscr ;
  949.         status "Click to continue..." ;
  950.         endimg ;
  951.         startimg "l6_rev.pcf" 0 0 ;
  952.         call "map1" ;
  953.         arrow "a2" 142 80 1 ;
  954.         textbox "tb2" 194 110 252 52 "The ~c01World Wide Web ~c00consists of information sites within the Internet. " ;
  955.         textbox "tb2a" 154 180 333 52 "Each ~c01Web Site ~c00consists of HTML documents, which contain links to other documents and files." ;
  956.         textbox "tb2b" 174 250 293 68 "The advantage of the Web is that you can view all file types, including graphics, sound, and animation." ;
  957.         anykeymouse 17 ;
  958.         clrscr ;
  959.         nextimg ;
  960.         call "maparch" ;
  961.         textbox "tb3" 158 366 324 55 "When you access the World Wide Web using Netcruiser, Netcruiser's ~c01Home Page ~c00is displayed." ;
  962.         anykeymouse 17 ;
  963.         clrscr ;
  964.         nextimg ;
  965.         textbox "tb4" 293 318 236 71 "To start browsing the Web, you click a ~c01link, ~c00which then accesses the associated Web site." ;
  966.         anykeymouse 17 ;
  967.         clrscr ;
  968.         nextimg ;
  969.         textbox "tb5" 326 335 288 74 "Once you access a Web site, you can continue clicking links to view documents and other files." ;
  970.         anykeymouse 17 ;
  971.         clrscr ;
  972.         nextimg ;
  973.         textbox "tb6" 147 226 324 55 "When you click a link, the system downloads all of the files associated with that link." ;
  974.         textbox "tb7" 147 291 324 55 "To stop the downloading process, you can click the ~c01Stop ~c00button." ;
  975.         arrow "a6" 614 123 1 ;
  976.         arrow "a6a" 568 406 3 ;
  977.         arrow "a6b" 59 406 3 ;
  978.         anykeymouse 17 ;
  979.         clrscr ;
  980.         nextimg ;
  981.         textbox "tb7" 210 234 249 72 "The Netcruiser Speed Buttons allow you to navigate the Web sites you have already accessed." ;
  982.         textbox "tb7a" 195 321 280 71 "For example, you can place bookmarks, return to the previous document, or return to the Web Home Page." ;
  983.         box "bx7" 5 80 139 39 ;
  984.         box "bx7a" 501 80 105 39 ;
  985.         anykeymouse 17 ;
  986.         clrscr ;
  987.         nextimg ;
  988.         textbox "tb8" 313 279 278 55 "~c01Yahoo ~c00is one of the many tools you can use to search for information in the Web." ;
  989.         textbox "tb8a" 312 340 278 70 "For example, Yahoo's ~c01Search ~c00link lets you search for Web sites containing certain words, such as \"chocolate.\"" ;
  990.         anykeymouse 17 ;
  991.         clrscr ;
  992.         nextimg ;
  993.         showcaret 309 91 ;
  994.         arrow "a9" 316 98 4 ;
  995.         textbox "tb9" 314 303 258 68 "You can directly access a Web site by typing in its ~c01URL ~c00(Uniform Resource Locator) and pressing <Enter>." ;
  996.         anykeymouse 17 ;
  997.         status ;
  998.         clrscr ;
  999.         hidecaret ;
  1000.         endimg ;
  1001.         endaud ;
  1002.     chainseg "seg_end" ;
  1003. endseg ;
  1004.  
  1005. segment "seg_end" 1 ;
  1006.         menuitem "Lesson Conclusion" ;
  1007.         startimg "tr.pcf" 0 0 ;
  1008.         config __textcolor darkcyan ;
  1009.         text "tx0a" 240 39 390 23 "~f05Lesson 6:  Wandering the World Wide Web" ;
  1010.         config __textcolor darkred ;
  1011.         text "tx0" 340 65 150 31 "~f27Conclusion" ;
  1012.         startbullet 219 120 365 167 ;
  1013.         bullet "b0" 1 0 "If you are unsure about any of the material covered, you should take some or all of the lesson again." ;
  1014.         bullet "b1" 1 11 "You're now ready to explore the fascinating, informatative and fun world of the Internet!" ;
  1015.         config __bitmaponfx 15 ;
  1016.         config __bitmapongrain 1000 ;
  1017.         config __bitmaponsubgrain 1000 ;
  1018.         config __bitmapondelay 1 ;
  1019.         config __bitmapontrans 1 ;
  1020.         config __bitmapontcolor green ;
  1021.         bitmap "bit0" "internet.dll" "WIZ" 321 245 ;
  1022.         startavi "l6e.avi" "jnk1.vcw" 15 78 ;
  1023.         bitmap "bit1" "internet.dll" "CLOUD3" 440 230 ;
  1024.         text "tx1" 520 263 65 26 "BYE!" ;
  1025.         sleep 200 ;
  1026.         remove "tx1" "bit1" ;
  1027.         sleep 1 ;
  1028.         config __bitmapofffx 39 ;
  1029.         config __bitmapoffgrain 40 ;
  1030.         config __bitmapoffsubgrain 40 ;
  1031.         config __bitmapoffdelay 1 ;
  1032.         remove "bit0" ;
  1033.         status "Click to return to the Course Menu" ;
  1034.         anykeymouse 17 ;
  1035.         clrscr ;
  1036.         endimg ;
  1037. endseg ;
  1038.  
  1039.